home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / JUL / MC9507 / moveform.pas < prev    next >
Pascal/Delphi Source File  |  1995-06-01  |  574b  |  35 lines

  1. unit Moveform;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, DB, DBTables;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     BatchMove1: TBatchMove;
  12.     Table1: TTable;
  13.     Table2: TTable;
  14.     ButtonMove: TButton;
  15.     procedure ButtonMoveClick(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   Form1: TForm1;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TForm1.ButtonMoveClick(Sender: TObject);
  30. begin
  31.   BatchMove1.Execute;
  32. end;
  33.  
  34. end.
  35.